LEADTOOLS Medical (Leadtools.Medical.Caching assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.25
Insert(String,Byte[],CacheItemPriority,String) Method
See Also 
Leadtools.Medical.Caching Namespace > Cache Class > Insert Method : Insert(String,Byte[],CacheItemPriority,String) Method



id
A System.String that uniquely identifies the cache item to be added.
data
An array of System.Byte representing the item data.
priority
The relative precedence of the cache item expressed by System.Web.Caching.CacheItemPriority. Items with lower cache priority will be removed before items with higher priority.
dependency
A System.String to item that will be deleted when the added cache item is deleted.

The Insert(String,Byte[],CacheItemPriority,String) Method is available as an add-on to the LEADTOOLS Medical Imaging toolkits.

id
A System.String that uniquely identifies the cache item to be added.
data
An array of System.Byte representing the item data.
priority
The relative precedence of the cache item expressed by System.Web.Caching.CacheItemPriority. Items with lower cache priority will be removed before items with higher priority.
dependency
A System.String to item that will be deleted when the added cache item is deleted.
Inserts a new item to the cache store.

Syntax

Visual Basic (Declaration) 
Overloads Public Overridable Sub Insert( _
   ByVal id As String, _
   ByVal data() As Byte, _
   ByVal priority As CacheItemPriority, _
   ByVal dependency As String _
) 
Visual Basic (Usage)Copy Code
Dim instance As Cache
Dim id As String
Dim data() As Byte
Dim priority As CacheItemPriority
Dim dependency As String
 
instance.Insert(id, data, priority, dependency)
C# 
public virtual void Insert( 
   string id,
   byte[] data,
   CacheItemPriority priority,
   string dependency
)
C++/CLI 
public:
virtual void Insert( 
   String^ id,
   array<byte>^ data,
   CacheItemPriority priority,
   String^ dependency
) 

Parameters

id
A System.String that uniquely identifies the cache item to be added.
data
An array of System.Byte representing the item data.
priority
The relative precedence of the cache item expressed by System.Web.Caching.CacheItemPriority. Items with lower cache priority will be removed before items with higher priority.
dependency
A System.String to item that will be deleted when the added cache item is deleted.

Remarks

This method will always try to insert the cache item without checking if the item exists. If the item already exists in the cache the behavior of this method depends of the implementation object of the Leadtools.Medical.Caching.Storage.IStorageProvider interface.

Use the Add(String,Byte[],CacheItemPriority) method to check if the item exists in the cache before inserting the item.

Requirements

Target Platforms: Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family

See Also